home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 1
/
Merciful - Disc 1.iso
/
software
/
a
/
ami_express_professional
/
amiexpressprofessionalv4.0.dms
/
amiexpressprofessionalv4.0.adf
/
INSTALL
< prev
next >
Wrap
Text File
|
1995-03-20
|
3KB
|
92 lines
; Installation Script for AmiExpress Installation
; Written by Jens Langner - /X Dev Team - Done on 30.9.1993
; Copyright (c) LightSpeed Technologies 1993
; **** Memory Check ****
(set mem (database "total-mem"))
(set mem (/ mem 1024000))
(if (< mem 1)
(abort "Your system only has " mem " meg(s) of ram. AmiExpress requires at least one "
"megs of ram. ")
)
; **** Working Check ****
(set workbench (getversion))
(set work (/ workbench 65536))
(set wb (if (>= work 37) 2 1))
(if (< work 2)
(abort "This release of AmiExpress requires at least version Workbench 2.04! Please "
"call your local distributor for details on the Workbench 1.3 release."
)
)
; **** Regular Installation ****
(set install_dir "")
(while (= install_dir "")
(set install_dir
(askdir
(prompt "On which Device would you like to install AmiExpress"
(help @askdir-help)
(default @default-dest)
)
)
)
)
(if (< (getdiskspace install_dir) 2000000)
(abort "The Disk you selected doesn`t have enough room for the whole "
"Installation of AmiExpress. Please pick another disk, or reformat this "
"one for more room. "
)
)
(complete 16)
(message ('\nSTART INSTALLATION on device "%s" now ? \n\n' install_dir)
"Extracting Files will take a while, please wait.....")
(set rextract ('AmiExInstall:c/lha -q x AmiExInstall:MAIN.LHA "%s"' install_dir))
(run (rextract))
(complete 32)
(copyfiles
(source "AmiExInstall:UPDATE/Aedoc4.guide")
(dest ("%sDOCUMENTATION/" install_dir))
(files)
(safe)
)
(complete 48)
(copyfiles
(source "AmiExInstall:UPDATE/Express")
(dest ("%sBBS/" install_dir))
(files)
(safe)
)
(complete 64)
(copyfiles
(source "AmiExInstall:UPDATE/Acp")
(dest ("%sWBSTARTUP/" install_dir))
(files)
(safe)
)
(complete 80)
(startup "AmiExpress AssignList"
(prompt "Would you like to store the AmiExpess`s Assigns in your User-Startup ? ")
(help @startup-help)
(command ('ASSIGN BBS: "%sBBS" \nASSIGN UTILS: BBS: \nASSIGN DOORS: BBS:DOORS/ \nPATH BBS: UTILS: DOORS: add \nMOUNT NULL: \nMOUNT CNN:' install_dir))
)
(complete 100)
(exit "-----------------------------------------------------\n"
"Take your Documentation now and go through all ConfigIcons"
" - configurate AmiExpress to your personal needs. If you got"
"problems with configurate AmiExpress correct, contact your"
"local AmiExpress distributor. Thanks for using the installing"
"script written by\n Jens Langner - /X DevTeam\n"
"-----------------------------------------------------"
)
; END OF INSTALLTION SCRIPT